home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
staket.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
997b
|
24 lines
/* RCSVER $Id: staket.sql,v 1.1 1999-02-25 14:56:30-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: staket.sql
* Date: 02/23/1999
* memo: Randy Wood
* Description: Create the staket table. staket contains information
* from the stake time farebox record.
* Changes:
************************************************************************* */
CREATE TABLE staket
(
det_seq_num NUMBER(38) /* pointer to mstrrec record */
CONSTRAINT ref1_staket REFERENCES mstrrec(det_seq_num),
farebox_glid NUMBER(38), /* Farebox ID from global_id */
conv_date DATE, /* Date for this record */
s_date DATE, /* date/time of record */
s_dow NUMBER(1), /* day of week (0-6) */
s_tz NUMBER(38), /* timezone */
s_isdst NUMBER(1), /* is this daylight savings time? */
CONSTRAINT pk_staket PRIMARY KEY (det_seq_num)
);